of the fcc temp buffer. It got lost somewhere.
(% abs 60))))
(set-buffer tembuf)
(erase-buffer)
- (insert "From " (user-login-name) " "
+ ;; This initial newline is written out if the fcc file already exists.
+ (insert "\nFrom " (user-login-name) " "
(current-time-string time) "\n")
;; Insert the time zone before the year.
(forward-char -1)
;; Else append to the file directly.
(write-region
;; Include a blank line before if file already exists.
+
(if (file-exists-p (car fcc-list)) (point-min) (1+ (point-min)))
(point-max) (car fcc-list) t)))
(setq fcc-list (cdr fcc-list))))